* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-green: #206155;
    --dark-green: #071E22;
    --white: #FFFBFF;
    --cream: #F1DABF;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--white);
    color: var(--dark-green);
    line-height: 1.6;
}

/* Header */
header {
    background-color: var(--main-green);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

header h1 {
    font-family: 'Lora', serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

header p {
    font-size: 16px;
    color: var(--cream);
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* Intro Section */
.intro-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--main-green);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-green);
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--main-green);
    margin-bottom: 40px;
}

.map-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border: 3px solid var(--main-green);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--cream);
    padding: 0;
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-hint {
    margin-top: 20px;
    font-size: 16px;
    color: var(--main-green);
    font-weight: 600;
}

/* Destination Sections */
.destination {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 30px;
    background-color: var(--white);
    border: 3px solid var(--main-green);
    border-radius: 8px;
}

.destination-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--main-green);
}

.destination-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--main-green);
    margin-bottom: 10px;
}

.destination-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.destination-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.destination-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--main-green);
    margin-bottom: 15px;
    margin-top: 30px;
}

.destination-text h3:first-child {
    margin-top: 0;
}

.destination-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-green);
    text-align: justify;
    margin-bottom: 20px;
}

.destination-text ul {
    list-style: none;
    padding-left: 0;
}

.destination-text ul li {
    font-size: 15px;
    line-height: 2;
    color: var(--dark-green);
    padding-left: 10px;
}

/* Gallery */
.destination-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid var(--main-green);
    background-color: var(--cream);
}

.gallery-item.large {
    grid-column: 1 / -1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Closing Section */
.closing-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px 30px;
    text-align: center;
    background-color: var(--cream);
    border-radius: 8px;
}

.closing-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--main-green);
    margin-bottom: 20px;
}

.closing-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-green);
}

.go-to-top {
    display: inline-block;
    margin-top: 30px;
    color: var(--main-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.go-to-top:hover {
    color: var(--dark-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .destination-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .destination-header h2 {
        font-size: 36px;
    }

    .destination-text h3 {
        font-size: 24px;
    }

    .destination-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: 1;
    }
}
